home *** CD-ROM | disk | FTP | other *** search
/ Network CD 2 / Network CD - Volume 2.iso / programs / internet / terminal / xcomm100a.lha / x-comm / rexx / TwisterLogon.Rexx < prev   
Encoding:
OS/2 REXX Batch file  |  1993-01-10  |  491 b   |  24 lines

  1. /* Auto Logon for Twister BBS (One of the X-Comm Support BBS */
  2.  
  3. /* For information detailing this script please take a look at "Extro.rexx" */
  4.  
  5. Address "X-Comm"
  6. options results
  7.  
  8. LOOK1 = "name:"
  9. LOOK2 = "password:"
  10.  
  11. XWaitString LOOK1 10
  12. If result == LOOK1 then do
  13.         XString "Your name\n\r"
  14.         XSerialPrint result
  15.  
  16.         XWaitString LOOK2 10
  17.         If result == LOOK2 then do
  18.                 XString "Your password\n\r"
  19.                 XSerialPrint result
  20.         end
  21. end
  22.  
  23. exit
  24.